'Declaration
Public Function New( _ ByVal state As Object, _ ByVal valueArray() As Object _ )
'Usage
Dim state As Object Dim valueArray() As Object Dim instance As New ValueArrayResult(state, valueArray)
public ValueArrayResult( object state, object[] valueArray )
public: ValueArrayResult( Object^ state, array<Object^>^ valueArray )
Parameters
- state
- An arbitrary object associated with the operation.
The value of this parameter can be
null
(Nothing
in Visual Basic). - valueArray
- An array of values that is a successful result of the operation.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).The individual elements of the parameter value can be
null
(Nothing
in Visual Basic).